home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Demos / AppMaker 2.0b3 / Demo AppMaker 1.5 / Demo AppMaker™ / Demo AppMaker™.rsrc / TmMM_1026_TGridView < prev    next >
Encoding:
Text File  |  1992-04-08  |  716 b   |  36 lines

  1. %case doChoice%
  2.     %DoChoice%
  3. %case itemNr%
  4.     %DefineItem%
  5. %case classDecl%
  6.  
  7.     TYPE
  8.         %classname% = OBJECT (%superclass%) 
  9.             OVERRIDE METHOD DrawCell    (aCell:      GridCell;
  10.                                          aQDRect:      Rect);
  11.             (*${QINSPECTOR*)
  12.             OVERRIDE METHOD Fields (DoToField: DoToFieldMETHOD);
  13.             (*$}*)
  14.         END(*%classname%*);
  15. %case gDeadStripSuppression%
  16.     %StripSuppression%
  17. %case classMethods%
  18.     (*----------*)
  19.     METHOD %classname%.DrawCell    (aCell:      GridCell;
  20.                                  aQDRect:      Rect);
  21.     BEGIN
  22.         (*. replace with something useful .*)
  23.     END DrawCell;
  24.     
  25.     %ClassMethods%
  26. %case defImports%
  27.     FROM Types IMPORT
  28.         Rect;
  29.     FROM UGridView IMPORT
  30.         TGridView, GridCell;
  31. %case modImports%
  32.     FROM Types IMPORT
  33.         Rect;
  34.     FROM UGridView IMPORT
  35.         GridCell;
  36.